home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-12-30 | 1.7 KB | 47 lines |
-
- #
- # This is the make file for the prsr. lib subdirectory.
- # In order to run it tcc is assumed to be available, in addition to
- # tlib and obviously borland make.
- #
- # Usage: "make [-DMDL=model]" where model can be l (large) or c (compact) etc.
- # Note the MDL is optional with large model as default.
- #
- # Gershon Elber, Aug 1991
- #
-
- # Works only on TC++ 1.0 make and up - swap out make before invoking command.
- # .SWAP
-
- # Get the destination directories:
- !include "..\makeflag.tc"
-
- OBJS = allocate.obj iritprsr.obj iritprsb.obj attribut.obj ip_cnvrt.obj \
- ip_fatal.obj ip_procs.obj
-
- # Show me better way if you know one to prepare this line for TLIB:
- POBJS = +allocate.obj +iritprsr.obj +iritprsb.obj +attribut.obj \
- +ip_cnvrt.obj +ip_fatal.obj +ip_procs.obj
-
- prsr_lib.lib: $(OBJS)
- del prsr_lib.lib
- tlib /c prsr_lib.lib @&&!
- $(POBJS), prsr_lib.lst
- !
-
- install: prsr_lib.lib
- copy prsr_lib.lib $(LIB_DIR)
- copy *.h $(INC_DIR)
-
- # Dependencies starts here - do not touch, generated automatically.
- allocate.obj: iritprsr.h allocate.h iritprsr.h attribut.h iritprsr.h
- ami_clnt.obj: irit_soc.h iritprsr.h allocate.h iritprsr.h amiga.h
- ami_srvr.obj: irit_soc.h iritprsr.h allocate.h iritprsr.h amiga.h
- attribut.obj: iritprsr.h attribut.h iritprsr.h allocate.h iritprsr.h
- ip_cnvrt.obj: iritprsr.h allocate.h iritprsr.h ip_cnvrt.h iritprsr.h attribut.h iritprsr.h
- ip_fatal.obj: iritprsr.h allocate.h iritprsr.h attribut.h iritprsr.h
- ip_procs.obj: attribut.h iritprsr.h iritprsr.h
- iritprsr.obj: iritprsr.h allocate.h iritprsr.h attribut.h iritprsr.h irit_soc.h iritprsr.h allocate.h iritprsr.h
- soc_clnt.obj: irit_soc.h iritprsr.h allocate.h iritprsr.h
- soc_srvr.obj: irit_soc.h iritprsr.h allocate.h iritprsr.h
-